<!--To format a time field from FileMaker as 12 hour time and not military:-->

[Date_Format:(Date:'1/1/2001 ' + (Field:'Time')),-DateFormat='%-r']

<!--or-->

[Date_Format:(Date:(Field:'Date') + ' ' + (Field:'Time')),-DateFormat='%-r']

<!--May want to surround with a conditional to check if there is something to format otherwise it comes up as 12 midnight-->

[If:(Field:'Time')!=''][Date_Format:(Date:(Field:'Date') + ' ' + (Field:'Time')),-DateFormat='%-r'][/If]